home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 426-450 / disk_436 / keymacro / makefile < prev    next >
Makefile  |  1992-05-06  |  656b  |  28 lines

  1. CFLAGS            = -hi KeyMacro.SYM -wnu -so
  2.  
  3. OBJS1            = KeyMacro.o KeySupport.o MRArpFile.o
  4. OBJS2            = KeyMacro-Handler.o KeySupport.o
  5.  
  6. all:            KeyMacro.SYM KeyMacro KeyMacro-Handler Null-Handler
  7.  
  8. KeyMacro:        $(OBJS1)
  9.             LN +q -m -o KeyMacro rstart.o gads.o $(OBJS1) -Larp -Lc
  10.             Protect KeyMacro +p
  11.  
  12. KeyMacro-Handler:    $(OBJS2)
  13.             LN +q -m $(OBJS2) -Lc
  14.             Protect KeyMacro-Handler -e
  15.  
  16. Null-Handler:        Null-Handler.o
  17.             LN +q -m Null-Handler.o
  18.             Protect Null-Handler -e
  19.  
  20. KeyMacro.o:        KeyMacro.c
  21.             CC $(CFLAGS) -m0b KeyMacro.c
  22.  
  23. Null-Handler.o:        Null-Handler.c
  24.             CC -so -wnu -mmscd0b -r4 Null-Handler.c
  25.  
  26. KeyMacro.SYM:        PreInclude.c
  27.             CC -ho KeyMacro.SYM PreInclude.c
  28.